home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1997 February / Software of the Month Club 1997 February.iso / pc / dos / child / keyboard / keyb.pro < prev    next >
Encoding:
Text File  |  1980-01-01  |  3.2 KB  |  67 lines

  1. ;The following establishes the score ranges for weeks 4 - 82.  The
  2. ;scores must be established in order of highest to lowest grade when
  3. ;using set score.  The lines do not have to be together and comments
  4. ;may be used.  Up to 4 characters may be used in the grade letter
  5. ;column.
  6.  
  7. ;              4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20
  8.  
  9. set score A+  32,33,34,35,36,36,37,37,38,39,40,40,41,41,42,43,44,-
  10.               45,46,46,47,48,49,49,50,50,51,51,52,52,53,53,54,54,-
  11.               54,55,55,55,56,56,57,57,58,58,58,59,59,60,60,61,61,-
  12.               61,62,62,62,62,63,63,63,63,64,64,64,64,65,65,65,65,-
  13.               66,66,66,66,67,67,67,67,68,68,68
  14. set score A   29,30,31,31,32,33,34,34,35,35,36,37,38,38,39,40,41,-
  15.               42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,-
  16.               50,51,51,51,52,52,53,53,54,54,54,55,55,56,56,57,57,-
  17.               57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,-
  18.               62,62,62,62,63,63,63,63,64,64,64
  19. set score B+  26,27,28,28,29,30,31,31,32,32,33,33,34,35,36,36,37,-
  20.               38,39,39,40,40,41,41,42,42,43,44,45,45,46,46,47,47,-
  21.               47,48,48,48,49,49,50,50,51,51,51,53,53,53,53,54,54,-
  22.               54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,-
  23.               59,59,59,59,60,60,60,60,61,61,61
  24. set score B   23,24,25,25,26,27,28,28,29,29,30,30,31,31,32,33,34,-
  25.               34,35,35,36,37,38,38,39,39,40,40,41,41,42,42,43,43,-
  26.               43,44,44,44,45,45,46,46,47,47,47,48,48,49,49,50,50,-
  27.               50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,-
  28.               55,55,55,55,56,56,56,56,57,57,57
  29. set score C+  20,21,22,22,23,24,25,25,26,26,27,27,28,28,29,29,30,-
  30.               31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,-
  31.               39,40,40,40,41,41,42,42,43,43,43,44,44,45,45,46,46,-
  32.               46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,-
  33.               51,51,51,51,52,52,52,52,53,53,53
  34. set score C   17,18,19,19,20,21,22,22,23,23,24,24,25,25,26,26,27,-
  35.               27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,-
  36.               35,36,36,36,37,37,38,38,39,39,39,40,40,41,41,42,42,-
  37.               42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,-
  38.               47,47,47,47,48,48,48,48,49,49,49
  39. set score D+  14,15,16,16,17,18,19,19,20,20,21,21,22,22,23,23,24,-
  40.               24,25,25,26,26,27,27,28,28,29,29,30,30,30,30,31,31,-
  41.               31,32,32,32,33,33,34,34,35,35,35,36,36,37,37,38,38,-
  42.               38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,-
  43.               43,43,43,43,44,44,44,44,45,45,45
  44. set score D   11,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,-
  45.               20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,-
  46.               28,29,29,29,30,30,31,31,32,32,32,33,33,34,34,35,35,-
  47.               35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,-
  48.               40,40,40,40,41,41,41,41,42,42,42
  49. set score Fail                              
  50.  
  51. ;The following establishes the penalty ranges for all 8 passing grade levels
  52.  
  53. set penalty 0 to 6 = 0
  54. set penalty 7 to 9 = 2
  55. set penalty 10 to 12 = 3
  56. set penalty 13 to 15 = 4
  57. set penalty 16 to 18 = 5
  58. set penalty 19 to 21 = 6
  59. set penalty 22 to 24 = 7
  60. set penalty 25 to 27 = 8
  61.  
  62. ;change the week and mode defaults
  63.  
  64. set week 6
  65. set mode freeform
  66. 
  67.